Data available through: 2020-05-26
I am restricted the charts to show values on March 15, 2020 and after. This is when preventative measures started to increase dramatically.
These show the cumulative total of cases and deaths for each day - also denoting the current totals. These total values are important; however they are not helpful for figuring out whether the pandemic is slowing down or growing.
Looking at new cases each day can help us see if the pandemic is slowing. If the new cases per day is decreasing then the pandemic is slowing.
There can be a lot of variability in the daily case totals due to a variety of variable. One variable is the availability of tests; cases will go down if there is scarcity of tests and rise dramatically when more tests become available. One way to help get a better sense over the overall trend is by smoothing the data. I have choosen two types of smoothing: LOESS smoothing (with a span = 0.9) and a 14 day moving average.
Both trends show a peak around mid-April and have been moving downward. This may be due to inacting stricter social distancing and lock-downs accross the country.
COVID-19 is much deadlier than the common flu. One way to measure the impact is to look at the death percentage which is the total number of deaths divided by the total number of cases.
A big concern during April was that the death percentage was continually increasing; even when actual deaths per day were not increasing. Starting in early May the death percentage started to plateau around 6%.
Similar to new cases per day, deaths per day has been trending downward since about mid-April, although there are still spikes. These spikes may be do to reporting times - spikes seem cyclical on a weekly with lower counts generally occuring on the weekends and higher counts happening during the week.
The actual values for the pervious 14 days are detailed in the table below for those who are interested in actual values.
| Date | Total Cases | New Cases | Total Deaths | New Deaths | Death Percentage |
|---|---|---|---|---|---|
| Tue, May 26, 2020 | 1,670,120 | 18,179 | 97,921 | 655 | 5.863% |
| Mon, May 25, 2020 | 1,651,941 | 19,112 | 97,266 | 719 | 5.888% |
| Sun, May 24, 2020 | 1,632,829 | 20,664 | 96,547 | 640 | 5.913% |
| Sat, May 23, 2020 | 1,612,165 | 22,300 | 95,907 | 1,102 | 5.949% |
| Fri, May 22, 2020 | 1,589,865 | 23,362 | 94,805 | 1,200 | 5.963% |
| Thu, May 21, 2020 | 1,566,503 | 25,957 | 93,605 | 1,332 | 5.975% |
| Wed, May 20, 2020 | 1,540,546 | 22,070 | 92,273 | 1,496 | 5.990% |
| Tue, May 19, 2020 | 1,518,476 | 20,608 | 90,777 | 1,536 | 5.978% |
| Mon, May 18, 2020 | 1,497,868 | 21,621 | 89,241 | 1,018 | 5.958% |
| Sun, May 17, 2020 | 1,476,247 | 18,518 | 88,223 | 762 | 5.976% |
| Sat, May 16, 2020 | 1,457,729 | 24,512 | 87,461 | 1,081 | 6.000% |
| Fri, May 15, 2020 | 1,433,217 | 24,906 | 86,380 | 1,458 | 6.027% |
| Thu, May 14, 2020 | 1,408,311 | 26,799 | 84,922 | 1,772 | 6.030% |
| Wed, May 13, 2020 | 1,381,512 | 20,616 | 83,150 | 1,680 | 6.019% |
Data available through: 2020-05-26
I am restricted the charts to show values on March 15, 2020 and after. This is when preventative measures started to increase dramatically.
One important calculation is the growth factor, as outlined in 3Blue1Brown’s youtube video on exponential growth . The growth rate is calculated as follows:
\[ \text{Growth Factor} = \frac{ \text{New-Cases}_N}{\text{New-Cases}_{N-1}} \] where \(N\) is a given day. Essentialy this is taking the amount new cases today and dividing them by the amount of new cases yesterday.
The growth factor can be very helpful in determining if the pandemic is slowing. If the growth factor is less than 1, this means that the amount of new cases today is less than yesterday. Once there are multiple days with a growth factor less than 1 - this is a strong sign that the pandemic is slowing down.
Adjustment to Growth Factor
What if there were 0 cases yesterday? This would make the growth factor undefined (or \(\infty\) according to R). This makes it difficult to look at trends. I have adjusted the growth factor so that if the pervious day had 0 cases; the current day’s growth factor is equal to the number of new cases:
\[ \text{Growth Factor} = \begin{cases} \frac{ \text{New-Cases}_N}{\text{New-Cases}_{N-1}} & \text{if } \text{New-Cases}_{N_1} \neq 0 \\[1ex] \text{New-Cases}_N & \text{if } \text{New-Cases}_{N_1} = 0 \end{cases} \] When I made this adjustment I was thinking about the early stages of the pandemic when the number of cases per day are 0, 1, or 2. However, given the test scarcity and reporting times there are situations in counties or states where there were 0 cases one day and then hundred or thousands the next day. This is why some of growth factors are much larger.
Similar to the new cases per day; there can be a lot of variability in growth rates. In order to get a better sense of the trend I am showing two smoothing curves: LOESS smoothing (with span = 0.9) and a 14 day moving average.
### Recent Values by Day for US
| Date | Total Cases | New Cases | Growth Factor |
|---|---|---|---|
| Tue, May 26, 2020 | 1,670,120 | 18,179 | 0.95 |
| Mon, May 25, 2020 | 1,651,941 | 19,112 | 0.92 |
| Sun, May 24, 2020 | 1,632,829 | 20,664 | 0.93 |
| Sat, May 23, 2020 | 1,612,165 | 22,300 | 0.95 |
| Fri, May 22, 2020 | 1,589,865 | 23,362 | 0.9 |
| Thu, May 21, 2020 | 1,566,503 | 25,957 | 1.18 |
| Wed, May 20, 2020 | 1,540,546 | 22,070 | 1.07 |
| Tue, May 19, 2020 | 1,518,476 | 20,608 | 0.95 |
| Mon, May 18, 2020 | 1,497,868 | 21,621 | 1.17 |
| Sun, May 17, 2020 | 1,476,247 | 18,518 | 0.76 |
| Sat, May 16, 2020 | 1,457,729 | 24,512 | 0.98 |
| Fri, May 15, 2020 | 1,433,217 | 24,906 | 0.93 |
| Thu, May 14, 2020 | 1,408,311 | 26,799 | 1.3 |
| Wed, May 13, 2020 | 1,381,512 | 20,616 | 0.96 |
Since most of the COVID-19 measures are enacted by the state; it may be more helpful for the individual to see the growth factor for the last 14 days in a specific state.
Build your own growth factor plot for a given state and time period by using a shiny app:
https://mareichler.shinyapps.io/state_gf/
Data available through: 2020-05-26
This plot is a quick overview of the last two weeks for each state. Which states have seen an average decrease in daily cases for 14 days and may be ready to start the re-opening process? Which states are not ready to reopen and finally which states may need additional social-distancing and lock-down measures?
As mentioned in the Growth Factor tab, some states will have very large growth rates. This is mostly due to having 0 cases on one day and then a large amount the next day - likely caused by test availability or reporting.
Data available through: 2020-05-26
It is also interesting to look at the growth factor on the county level. Although since most lock-down measures are enacted at the state level, this plot may not be that helpful. In addition there are 9,956 cases that have been not assigned to a county. Although that only accounts for 0.596% of the total cases; it could have a big impact on a given state or county.
Data available through: 2020-05-26
These gifs are not as helpful as I hoped they would be and do not do a great job of showing trends. This may be to the large fluctuations in growth factor and so getting a clear trend is difficult. I’m keeping theme here because they look nice and they took me a long time to create; even though they don’t provide much intellectual value.
This data is downloaded from USA Facts CDC. I use two of the three spreadsheets, one with total cases and one with total deaths - both broken down by state and county. This data requires additional formatting, calculation, and aggregation. USA Facts gets data by county on a daily basis, this is totaled to get values for each day for the entire US.
The American CDC links to USA Facts under Cases & Death by County, which is how I found the data source.